home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / DigestOutputStream.java < prev    next >
Text File  |  1998-10-14  |  5KB  |  163 lines

  1. /*
  2.  * @(#)DigestOutputStream.java    1.20 98/07/01
  3.  *
  4.  * Copyright 1995-1998 by Sun Microsystems, Inc.,
  5.  * 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
  6.  * All rights reserved.
  7.  * 
  8.  * This software is the confidential and proprietary information
  9.  * of Sun Microsystems, Inc. ("Confidential Information").  You
  10.  * shall not disclose such Confidential Information and shall use
  11.  * it only in accordance with the terms of the license agreement
  12.  * you entered into with Sun.
  13.  */
  14.  
  15. package java.security;
  16.  
  17. import java.io.IOException;
  18. import java.io.EOFException;
  19. import java.io.OutputStream;
  20. import java.io.FilterOutputStream;
  21. import java.io.PrintStream;
  22. import java.io.ByteArrayOutputStream;
  23.  
  24. /**
  25.  * A transparent stream that updates the associated message digest using 
  26.  * the bits going through the stream.
  27.  *
  28.  * <p>To complete the message digest computation, call one of the 
  29.  * <code>digest</code> methods on the associated message 
  30.  * digest after your calls to one of this digest ouput stream's <a href = 
  31.  * "#write(int)">write</a> methods.
  32.  *      
  33.  * <p>It is possible to turn this stream on or off (see <a href =
  34.  * "#on">on</a>). When it is on, a call to <code>write</code> results in
  35.  * an update on the message digest.  But when it is off, the message 
  36.  * digest is not updated. The default is for the stream to be on.
  37.  *
  38.  * @see MessageDigest
  39.  * @see DigestInputStream
  40.  *
  41.  * @version 1.20 98/10/05
  42.  * @author Benjamin Renaud */
  43.  
  44. public class DigestOutputStream extends FilterOutputStream {
  45.   
  46.     private boolean on = true;
  47.  
  48.     /**  
  49.      * The message digest associated with this stream.  
  50.      */  
  51.     protected MessageDigest digest;
  52.  
  53.     /**
  54.      * Creates a digest output stream, using the specified output stream
  55.      * and message digest.
  56.      *
  57.      * @param stream the output stream.
  58.      *
  59.      * @param digest the message digest to associate with this stream.
  60.      */
  61.     public DigestOutputStream(OutputStream stream, MessageDigest digest) {
  62.     super(stream);
  63.     setMessageDigest(digest);
  64.     }
  65.  
  66.     /**
  67.      * Returns the message digest associated with this stream.
  68.      *
  69.      * @return the message digest associated with this stream.
  70.      */
  71.     public MessageDigest getMessageDigest() {
  72.     return digest;
  73.     }    
  74.  
  75.     /**
  76.      * Associates the specified message digest with this stream.
  77.      *
  78.      * @param digest the message digest to be associated with this stream.  
  79.      */
  80.     public void setMessageDigest(MessageDigest digest) {
  81.     this.digest = digest;
  82.     }
  83.  
  84.     /**
  85.      * Updates the message digest (if the digest function is on) using   
  86.      * the specified byte, and in any case writes the byte      
  87.      * to the output stream. That is, if the digest function is on
  88.      * (see <a href = "#on">on</a>), this method calls
  89.      * <code>update</code> on the message digest associated with this
  90.      * stream, passing it the byte <code>b</code>. This method then
  91.      * writes the byte to the output stream, blocking until the byte 
  92.      * is actually written.
  93.      *
  94.      * @param b the byte to be used for updating and writing to the    
  95.      * output stream.    
  96.      *
  97.      * @exception IOException if an I/O error occurs.
  98.      * 
  99.      * @see MessageDigest#update(byte) 
  100.      */
  101.     public void write(int b) throws IOException {
  102.     if (on) {
  103.         digest.update((byte)b);
  104.     }
  105.     out.write(b);
  106.     }
  107.  
  108.     /**
  109.      * Updates the message digest (if the digest function is on) using
  110.      * the specified subarray, and in any case writes the subarray to
  111.      * the output stream. That is, if the digest function is on (see
  112.      * <a href = "#on">on</a>), this method calls <code>update</code>
  113.      * on the message digest associated with this stream, passing it
  114.      * the subarray specifications. This method then writes the subarray 
  115.      * bytes to the output stream, blocking until the bytes are actually
  116.      * written.
  117.      *
  118.      * @param b the array containing the subarray to be used for updating 
  119.      * and writing to the output stream.
  120.      *
  121.      * @param off the offset into <code>b</code> of the first byte to 
  122.      * be updated and written.
  123.      *
  124.      * @param len the number of bytes of data to be updated and written 
  125.      * from <code>b</code>, starting at offset <code>off</code>.
  126.      *
  127.      * @exception IOException if an I/O error occurs.
  128.      * 
  129.      * @see MessageDigest#update(byte[], int, int)
  130.      */
  131.     public void write(byte[] b, int off, int len) throws IOException {
  132.     if (on) {
  133.         digest.update(b, off, len);
  134.     }
  135.     out.write(b, off, len);
  136.     }
  137.  
  138.     /**
  139.      * Turns the digest function on or off. The default is on.  When
  140.      * it is on, a call to <a href = "#write">write</a> results in an
  141.      * update on the message digest.  But when it is off, the message
  142.      * digest is not updated.
  143.      *    
  144.      * @param on true to turn the digest function on, false to turn it
  145.      * off. 
  146.      */
  147.     public void on(boolean on) {
  148.     this.on = on;
  149.     }
  150.     
  151.     /**
  152.      * Prints a string representation of this digest output stream and
  153.      * its associated message digest object.  
  154.      */
  155.      public String toString() {
  156.      return "[Digest Output Stream] " + digest.toString();
  157.      }
  158. }    
  159.  
  160.  
  161.   
  162.  
  163.